[CSS] TreeView Selected (active) Node
Posted
by nCdy
on Stack Overflow
See other posts from Stack Overflow
or by nCdy
Published on 2010-04-16T11:51:15Z
Indexed on
2010/04/16
11:53 UTC
Read the original article
Hit count: 271
got a TreeView with some nodes.
css for node :
a:link {
color:#333333;
text-decoration:none;
}
css for visited node :
a:visited {
color:#333333;
text-decoration:none;
}
for selected active mode :
a:active {
color:#222222;
}
but it doesn't appears to active element :(
why that could happens ?
© Stack Overflow or respective owner